home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 1999-08-30 | 1.1 KB | 41 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="General Usage\Misc"
- "NAME"="WinHelp CTRL Keys"
- "VERSION"="1.40"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Activate CTRL+SHIFT moving through helpfiles"
- "DESCRIPTION 1"="Activating this option allows you to move through every help file by pressing CTRL+SHIFT+CURSOR LEFT or CTRL+SHIFT+CURSOR RIGHT."
- "AUTHOR"="Xteq Systems"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
- "COMMENT 2"=" "
- "COMMENT 3"="from "Registry Dompteur" RegDom (c) 1996..98 by Horst Schmid, Horst_Schmid@compuserve.com"
-
-
- Sub Plugin_Initialize
- i=IniReadValue("WIN.INI","Windows Help","SeqTopicKeys")
- if i=1 then
- SetUIElement 1,true
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","1")
- else
- Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","0")
- end if
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-